GORAGOD.com

freelance, web developer, web designer, hosting, domain name

เรียก popup window

เปิด Popup Windows ด้วย Javascript (ไม่มี menu, toolbar และ status bar)

Popup Windows คือ หน้าต่างเว็บที่ไม่มี ทั้งเมนู และ toolbar ครับ ตัวอย่างง่ายๆก็ หน้า popup ที่แสดงโฆษณา หรือ หน้าดาวน์โหลด ของเว็บผมนี่แหละครับ

<script>
var win = null;
function popupwindow(filename, windowname, w, h) {
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += 'resizable=0, scrollbars=0, status=0,toolbar=0, menubars=0, location=0';
  win = window.open('./'+filename, windowname, settings);
  win.window.focus();
}
</script>

วิธีใช้

<script>popupwindow("test.php?xxx=xx", "_blank", 200, 300)</script>
0SHAREFacebookLINE it!
^